home *** CD-ROM | disk | FTP | other *** search
/ Interplay's Learn to Program Basic (Review Copy) / Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO / pc / ltpbasic / refxmpl / settext.bas < prev    next >
BASIC Source File  |  1998-03-09  |  180b  |  12 lines

  1. CLS
  2. SetTextLayer(BACKGROUND)
  3. TextColor 161 'Irish Green
  4. for i = 1 to 40
  5. print "This is a test ";
  6. next
  7. SetTextLayer(TEXT)
  8. TextColor 101 'Shamefull Red
  9. Banner "This goes on top!"
  10.  
  11.